home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 6 / Night Owl's Shareware - PDSI-006 - Night Owl Corp (1990).iso / 007a / pv050doc.zip / DOCFORMT.TXT next >
Text File  |  1991-08-25  |  1KB  |  52 lines

  1. Persistence of Vision
  2. Reference Format
  3. ----------------------
  4.   
  5.   Please document any new features in the following format.
  6.  
  7.  
  8. KEYWORD: KEYWORD
  9.  
  10. BRIEFLY:
  11.  One or two lines briefly describing feature.
  12. SYNTAX:
  13.  Describe the syntax of the feature.
  14.  
  15. DESCRIPTION:
  16.  Full description of feature and how it is used.
  17.  
  18. EXAMPLE:
  19.  Short example of how to use the feature.
  20.  
  21.  
  22. ---Example---
  23.  
  24.  
  25. KEYWORD: MARBLE
  26.  
  27. BRIEFLY:
  28.  This texture applies a marble coloring to an object's surface.
  29. SYNTAX:
  30.  MARBLE (TURBULENCE 0.0) (COLOR_MAP map)
  31.  
  32. DESCRIPTION: 
  33.   MARBLE creates veins of color on an object's surface that give it the
  34. appearance of marble stone. TURBULENCE values from 0.0 - 1.0 can be used 
  35. to make the veins swirl together more. Higher values give more turbulence.
  36. The default MARBLE color map is red and white, but a COLOR_MAP can be 
  37. specified to simulate different types of marble. 
  38. MARBLE is used inside a TEXTURE/END_TEXTURE block.                                             
  39.  
  40. EXAMPLE:
  41.  TEXTURE
  42.   MARBLE
  43.    TURBULENCE 0.3
  44.    COLOR_MAP
  45.    [0.0 0.5 COLOR White
  46.             COLOR Blue]
  47.    [0.5 1.0 COLOR Blue
  48.             COLOR White]
  49.  END_TEXTURE        
  50.  
  51.     
  52.